3.501 \(\int \frac{\sin ^{-1}(a x)^n}{\sqrt{1-a^2 x^2}} \, dx\)

Optimal. Leaf size=17 \[ \frac{\sin ^{-1}(a x)^{n+1}}{a (n+1)} \]

[Out]

ArcSin[a*x]^(1 + n)/(a*(1 + n))

________________________________________________________________________________________

Rubi [A]  time = 0.0363865, antiderivative size = 17, normalized size of antiderivative = 1., number of steps used = 1, number of rules used = 1, integrand size = 21, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.048, Rules used = {4641} \[ \frac{\sin ^{-1}(a x)^{n+1}}{a (n+1)} \]

Antiderivative was successfully verified.

[In]

Int[ArcSin[a*x]^n/Sqrt[1 - a^2*x^2],x]

[Out]

ArcSin[a*x]^(1 + n)/(a*(1 + n))

Rule 4641

Int[((a_.) + ArcSin[(c_.)*(x_)]*(b_.))^(n_.)/Sqrt[(d_) + (e_.)*(x_)^2], x_Symbol] :> Simp[(a + b*ArcSin[c*x])^
(n + 1)/(b*c*Sqrt[d]*(n + 1)), x] /; FreeQ[{a, b, c, d, e, n}, x] && EqQ[c^2*d + e, 0] && GtQ[d, 0] && NeQ[n,
-1]

Rubi steps

\begin{align*} \int \frac{\sin ^{-1}(a x)^n}{\sqrt{1-a^2 x^2}} \, dx &=\frac{\sin ^{-1}(a x)^{1+n}}{a (1+n)}\\ \end{align*}

Mathematica [A]  time = 0.0066565, size = 17, normalized size = 1. \[ \frac{\sin ^{-1}(a x)^{n+1}}{a (n+1)} \]

Antiderivative was successfully verified.

[In]

Integrate[ArcSin[a*x]^n/Sqrt[1 - a^2*x^2],x]

[Out]

ArcSin[a*x]^(1 + n)/(a*(1 + n))

________________________________________________________________________________________

Maple [A]  time = 0.003, size = 18, normalized size = 1.1 \begin{align*}{\frac{ \left ( \arcsin \left ( ax \right ) \right ) ^{1+n}}{a \left ( 1+n \right ) }} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(arcsin(a*x)^n/(-a^2*x^2+1)^(1/2),x)

[Out]

arcsin(a*x)^(1+n)/a/(1+n)

________________________________________________________________________________________

Maxima [F(-2)]  time = 0., size = 0, normalized size = 0. \begin{align*} \text{Exception raised: ValueError} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(arcsin(a*x)^n/(-a^2*x^2+1)^(1/2),x, algorithm="maxima")

[Out]

Exception raised: ValueError

________________________________________________________________________________________

Fricas [A]  time = 2.0873, size = 50, normalized size = 2.94 \begin{align*} \frac{\arcsin \left (a x\right )^{n} \arcsin \left (a x\right )}{a n + a} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(arcsin(a*x)^n/(-a^2*x^2+1)^(1/2),x, algorithm="fricas")

[Out]

arcsin(a*x)^n*arcsin(a*x)/(a*n + a)

________________________________________________________________________________________

Sympy [A]  time = 1.03935, size = 34, normalized size = 2. \begin{align*} \begin{cases} \tilde{\infty } x & \text{for}\: a = 0 \wedge n = -1 \\0^{n} x & \text{for}\: a = 0 \\\frac{\log{\left (\operatorname{asin}{\left (a x \right )} \right )}}{a} & \text{for}\: n = -1 \\\frac{\operatorname{asin}{\left (a x \right )} \operatorname{asin}^{n}{\left (a x \right )}}{a n + a} & \text{otherwise} \end{cases} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(asin(a*x)**n/(-a**2*x**2+1)**(1/2),x)

[Out]

Piecewise((zoo*x, Eq(a, 0) & Eq(n, -1)), (0**n*x, Eq(a, 0)), (log(asin(a*x))/a, Eq(n, -1)), (asin(a*x)*asin(a*
x)**n/(a*n + a), True))

________________________________________________________________________________________

Giac [A]  time = 1.2354, size = 23, normalized size = 1.35 \begin{align*} \frac{\arcsin \left (a x\right )^{n + 1}}{a{\left (n + 1\right )}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(arcsin(a*x)^n/(-a^2*x^2+1)^(1/2),x, algorithm="giac")

[Out]

arcsin(a*x)^(n + 1)/(a*(n + 1))